home *** CD-ROM | disk | FTP | other *** search
- Path: news.bridge.net!news
- From: David Byrden <100101.2547@compuserve.com>
- Newsgroups: comp.lang.c++
- Subject: Re: Unresolved External...
- Date: 28 Feb 1996 19:22:37 GMT
- Organization: self-employed
- Message-ID: <4h2a1t$518@news.bridge.net>
- References: <4h1oup$rh0@news.ppg.com>
- NNTP-Posting-Host: ppp-mia2-68.bridge.net
- Mime-Version: 1.0
- Content-Type: text/plain; charset=us-ascii
- Content-Transfer-Encoding: 7bit
- X-Mailer: Mozilla 1.1N (Windows; I; 16bit)
-
-
- >> I am trying to use a library of image analysis routines but whenever I
- >> call one of the routines, I get an "unresolved external" error during >> the linking stage
-
-
- Possibly the library was written in C and the headers are not aware of
- C++.
- Try enclosing your header like this;
-
-
-
- extern "C"
- {
- #include <header>
- }
-
-
-
-
-
- David
-
-
-